WOText


Synopsis

WOText{ value = defaultValue; [disabled = YES|NO;] [name = fieldName;] ...};

Description

WOText generates a multiline field for text input and display. It corresponds to the HTML element <TEXTAREA>.

value
On output, value specifies the text that is displayed in the text field. On input, value contains the text as the user left it.
disabled
If disabled evaluates to YES, the text area appears in the page but no input is allowed.
name
A name that uniquely identifies this element within the form. You may specify a name or let WebObjects automatically assigns one at runtime.

Examples